RS 485 3 Click
RS485 3 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : MikroE Team
- Date : Apr 2020.
- Type : UART GPS/GNSS type
Software Support
Example Description
This application is used to communicate between two RS485 Clicks.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.Rs4853
Example Key Functions
- rs4853_cfg_setup Config Object Initialization function.
void rs4853_cfg_setup(rs4853_cfg_t *cfg)
Config Object Initialization function.
Click configuration structure definition.
Definition rs4853.h:112
- rs4853_init Initialization function.
RS4853_RETVAL rs4853_init(rs4853_t *ctx, rs4853_cfg_t *cfg)
Initialization function.
Click ctx object definition.
Definition rs4853.h:98
- rs4853_generic_write Generic write function.
void rs4853_generic_write(rs4853_t *ctx, char *data_buf, uint16_t len)
Generic write function.
- rs4853_generic_read Generic read function.
int32_t rs4853_generic_read(rs4853_t *ctx, char *data_buf, uint16_t max_len)
Generic read function.
- rs4853_send_command Function ofr send command.
void rs4853_send_command (
rs4853_t *ctx,
char *command );
Application Init
Initializes driver.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
}
#define RS4853_MAP_MIKROBUS(cfg, mikrobus)
Definition rs4853.h:66
void application_init(void)
Definition main.c:63
Application Task
Reads the received data.
{
#ifdef DEMO_APP_RECEIVER
rs4853_process( );
#endif
#ifdef DEMO_APP_TRANSMITER
rs4853_process( );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
#endif
}
void application_task(void)
Definition main.c:88
#define TEXT_TO_SEND
Definition main.c:32
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.